home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-02 | 681 b | 33 lines |
- #!smake
- #
- include ../demodefs
-
- TARGETS = fast
-
- # For single-processor R3000 based systems use:
- # FFLAGS = -O
- # LLDLIBS = -lblas -lgl
-
- # For multiple-processor R3000 based systems use:
- # FFLAGS = -O -mp
- # LLDLIBS = -lblas_mp -lgl -mp
-
- # For single-processor R4000 or R4400 based systems use:
- FFLAGS = -O -mips2
- LLDLIBS = -lblas -lgl -mips2
-
- # For multi-processor R4000 or R4400 based systems use:
- # FFLAGS = -O -mp -mips2
- # LLDLIBS = -lblas_mp -lgl -mp -mips2
-
- CFILES = main.c fast.c draw.c init.c menu.c event.c second.c
- FFILES = linpack.f lapack.f
- HFILES = fast.h event.h
-
- include ../demorules
-
-
- ${TARGETS}: ${OBJECTS}
- ${F77} -o $@ ${OBJECTS} ${LDFLAGS}
- ${TAG} 0x9006 $@
-